home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 513 b | 39 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_EVAL8
-
- creation {ANY}
- make
-
- feature {ANY}
-
- make is
- local
- i: INTEGER;
- do
- i := 2;
- i := foo;
- check
- i = 5
- end;
- end;
-
- foo: INTEGER is
- local
- a: STRING;
- do
- a := "in foo";
- Result := bar;
- end;
-
- bar: INTEGER is
- local
- s: STRING;
- do
- s := "in bar";
- Result := 5;
- end;
-
- end -- TEST_EVAL8
-